@openui5/sap.ui.documentation 1.146.0 → 1.147.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/REUSE.toml +0 -51
- package/THIRDPARTY.txt +0 -44
- package/package.json +7 -7
- package/src/sap/ui/documentation/.library +1 -1
- package/src/sap/ui/documentation/ObjectPageSection.js +108 -0
- package/src/sap/ui/documentation/ObjectPageSubSection.js +114 -15
- package/src/sap/ui/documentation/library.js +2 -2
- package/src/sap/ui/documentation/messagebundle.properties +12 -0
- package/src/sap/ui/documentation/messagebundle_en.properties +2 -2
- package/src/sap/ui/documentation/messagebundle_en_US_saprigi.properties +3 -0
- package/src/sap/ui/documentation/sdk/Component.js +6 -0
- package/src/sap/ui/documentation/sdk/controller/SubApiDetail.controller.js +41 -3
- package/src/sap/ui/documentation/sdk/controller/util/ResourcesInfo.js +5 -0
- package/src/sap/ui/documentation/sdk/cookieSettingsDialog/view/CookieSettingsDialog.fragment.xml +5 -5
- package/src/sap/ui/documentation/sdk/css/style.css +23 -0
- package/src/sap/ui/documentation/sdk/index.js +6 -0
- package/src/sap/ui/documentation/sdk/thirdparty/highlight.js/highlight.js +3 -3
- package/src/sap/ui/documentation/sdk/view/AboutDialog.fragment.xml +6 -6
- package/src/sap/ui/documentation/sdk/view/ApiDetailInitial.view.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/ApiMaster.view.xml +6 -6
- package/src/sap/ui/documentation/sdk/view/App.view.xml +11 -11
- package/src/sap/ui/documentation/sdk/view/ChangeVersionDialog.fragment.xml +4 -4
- package/src/sap/ui/documentation/sdk/view/Code.view.xml +16 -16
- package/src/sap/ui/documentation/sdk/view/Controls.view.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/ControlsMaster.view.xml +6 -6
- package/src/sap/ui/documentation/sdk/view/Entity.view.xml +3 -3
- package/src/sap/ui/documentation/sdk/view/FioriDevelopmentRowSAPUI5.fragment.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/Footer.fragment.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/FooterMaster.fragment.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/GlobalSearchPicker.fragment.xml +6 -6
- package/src/sap/ui/documentation/sdk/view/Group.view.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/LiveEditor.view.xml +4 -4
- package/src/sap/ui/documentation/sdk/view/News.view.xml +4 -4
- package/src/sap/ui/documentation/sdk/view/NewsPopover.fragment.xml +4 -4
- package/src/sap/ui/documentation/sdk/view/NotFound.view.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/ReleaseDialog.fragment.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/ReleaseNotes.view.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/Resources.view.xml +24 -1
- package/src/sap/ui/documentation/sdk/view/Sample.view.xml +15 -15
- package/src/sap/ui/documentation/sdk/view/SampleNotFound.view.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/SearchPage.view.xml +9 -9
- package/src/sap/ui/documentation/sdk/view/Sitemap.view.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/SubApiDetail.view.xml +73 -60
- package/src/sap/ui/documentation/sdk/view/TopicDetail.view.xml +3 -3
- package/src/sap/ui/documentation/sdk/view/TopicDetailInitial.view.xml +4 -4
- package/src/sap/ui/documentation/sdk/view/TopicMaster.view.xml +5 -5
- package/src/sap/ui/documentation/sdk/view/VersionNotFound.view.xml +3 -3
- package/src/sap/ui/documentation/sdk/view/Welcome.view.xml +13 -13
- package/src/sap/ui/documentation/sdk/view/WelcomeCustomRowOpenUI5.fragment.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/appSettingsDialog.fragment.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/globalSettingsDialog.fragment.xml +2 -2
- package/src/sap/ui/documentation/sdk/view/viewSettingsDialog.fragment.xml +1 -1
- package/src/sap/ui/documentation/sdk/view/warningSampleDialog.fragment.xml +1 -1
|
@@ -19,17 +19,17 @@
|
|
|
19
19
|
showCloseButton="false">
|
|
20
20
|
|
|
21
21
|
<buttons>
|
|
22
|
-
<Button text="{i18n>NEWS_BTN_MARK_AS_READ}" press="handleMarkAsRead" />
|
|
22
|
+
<Button text="{i18n>NEWS_BTN_MARK_AS_READ}" press=".handleMarkAsRead" />
|
|
23
23
|
</buttons>
|
|
24
24
|
|
|
25
25
|
<NotificationListItem
|
|
26
26
|
title="{title}"
|
|
27
27
|
description="{description}"
|
|
28
28
|
datetime="{updated}"
|
|
29
|
-
close="handleNewsItemClose"
|
|
29
|
+
close=".handleNewsItemClose"
|
|
30
30
|
class="sapUiDemokitCustomNLI">
|
|
31
31
|
<buttons>
|
|
32
|
-
<Button visible="{= %{link} !== ''}" text="{i18n>NEWS_BTN_VISIT_LINK}" press="handleVisitLink">
|
|
32
|
+
<Button visible="{= %{link} !== ''}" text="{i18n>NEWS_BTN_VISIT_LINK}" press=".handleVisitLink">
|
|
33
33
|
<customData>
|
|
34
34
|
<core:CustomData key="newsLink" value="{link}"/>
|
|
35
35
|
</customData>
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
showCloseButton="false"
|
|
55
55
|
class="sapUiDemokitCustomNLI">
|
|
56
56
|
<buttons>
|
|
57
|
-
<Button visible="{= %{link} !== ''}" text="{i18n>NEWS_BTN_VISIT_LINK}" press="handleVisitLink">
|
|
57
|
+
<Button visible="{= %{link} !== ''}" text="{i18n>NEWS_BTN_VISIT_LINK}" press=".handleVisitLink">
|
|
58
58
|
<customData>
|
|
59
59
|
<core:CustomData key="newsLink" value="{link}"/>
|
|
60
60
|
</customData>
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
<Button
|
|
10
10
|
id="dismissAllNotifications"
|
|
11
11
|
text="{i18n>APP_NEWS_DISMISS_ALL_BTN}"
|
|
12
|
-
press="handleDismissAllPress"
|
|
12
|
+
press=".handleDismissAllPress"
|
|
13
13
|
enabled="{= %{news>/newsCount} > 0}" />
|
|
14
14
|
</beginButton>
|
|
15
15
|
<endButton>
|
|
16
16
|
<Button
|
|
17
17
|
id="showAllNotifications"
|
|
18
18
|
text="{i18n>APP_NEWS_SHOW_ALL_BTN}"
|
|
19
|
-
press="handleShowAllPress" />
|
|
19
|
+
press=".handleShowAllPress" />
|
|
20
20
|
</endButton>
|
|
21
21
|
<VBox>
|
|
22
22
|
<NotificationList
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
title="{news>title}"
|
|
32
32
|
description="{news>description}"
|
|
33
33
|
datetime="{news>updated}"
|
|
34
|
-
close="handleNewsItemClose"
|
|
34
|
+
close=".handleNewsItemClose"
|
|
35
35
|
class="sapUiDemokitCustomNLI">
|
|
36
36
|
<buttons>
|
|
37
|
-
<Button visible="{= %{news>link} !== ''}" text="{i18n>NEWS_BTN_VISIT_LINK}" press="handleVisitNewsLink">
|
|
37
|
+
<Button visible="{= %{news>link} !== ''}" text="{i18n>NEWS_BTN_VISIT_LINK}" press=".handleVisitNewsLink">
|
|
38
38
|
<customData>
|
|
39
39
|
<core:CustomData key="newsLink" value="{news>link}"/>
|
|
40
40
|
</customData>
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
stretch="{appView>/bPhoneSize}">
|
|
19
19
|
<Text text="{i18n>RELEASE_DIALOG_NO_DATA_TEXT}" class="sapUiSmallMargin" visible="{=!!${/noData}}"/>
|
|
20
20
|
<beginButton>
|
|
21
|
-
<Button text="{i18n>RELEASE_DIALOG_CLOSE_BTN}" press="onReleaseDialogClose"/>
|
|
21
|
+
<Button text="{i18n>RELEASE_DIALOG_CLOSE_BTN}" press=".onReleaseDialogClose"/>
|
|
22
22
|
</beginButton>
|
|
23
23
|
</Dialog>
|
|
24
24
|
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<headerContent>
|
|
23
23
|
<layout:VerticalLayout>
|
|
24
24
|
<m:Text text="This log includes the library notes for the libraries listed below. The distribution patch information shows when changes were delivered in SAPUI5. The version shown after each change indicates the library version where the change was first included."/>
|
|
25
|
-
<m:Select id="VersionSelect" items="{select>/items}" change="handleVersionChange" visible="false">
|
|
25
|
+
<m:Select id="VersionSelect" items="{select>/items}" change=".handleVersionChange" visible="false">
|
|
26
26
|
<core:Item text="{select>value}" key="{select>key}"/>
|
|
27
27
|
</m:Select>
|
|
28
28
|
</layout:VerticalLayout>
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
<!-- SAP Fiori Tools -->
|
|
232
232
|
<f:Card class="sapUiDemoKitResourcesRegularCard">
|
|
233
233
|
<f:header>
|
|
234
|
-
<card:Header title="{i18n>RESOURCES_CARD_TITLE_FIORI_TOOLS}" iconSrc="sap-icon://
|
|
234
|
+
<card:Header title="{i18n>RESOURCES_CARD_TITLE_FIORI_TOOLS}" iconSrc="sap-icon://SAP-icons-TNT/sap-fiori-tools" />
|
|
235
235
|
</f:header>
|
|
236
236
|
<f:content>
|
|
237
237
|
<VBox class="sapUiDemoKitResourcesCardContentSpacing" wrap="Wrap">
|
|
@@ -320,6 +320,29 @@
|
|
|
320
320
|
</f:content>
|
|
321
321
|
</f:Card>
|
|
322
322
|
|
|
323
|
+
<!-- SAP Fiori MCP server -->
|
|
324
|
+
<f:Card class="sapUiDemoKitResourcesRegularCard">
|
|
325
|
+
<f:header>
|
|
326
|
+
<card:Header title="{i18n>RESOURCES_CARD_TITLE_FIORI_MCPSERVER}" iconSrc="sap-icon://ai" />
|
|
327
|
+
</f:header>
|
|
328
|
+
<f:content>
|
|
329
|
+
<VBox class="sapUiDemoKitResourcesCardContentSpacing" wrap="Wrap">
|
|
330
|
+
<Text text="{i18n>RESOURCES_CARD_DESC_FIORI_MCPSERVER}">
|
|
331
|
+
<layoutData>
|
|
332
|
+
<FlexItemData growFactor="1" />
|
|
333
|
+
</layoutData>
|
|
334
|
+
</Text>
|
|
335
|
+
<Link
|
|
336
|
+
class="sapUiDemoKitResourcesCardLink"
|
|
337
|
+
href="{resources>/fioriMcpServer/href}"
|
|
338
|
+
target="_blank"
|
|
339
|
+
text="{i18n>RESOURCES_CARD_LINK_FIORI_MCPSERVER}"
|
|
340
|
+
tooltip="{i18n>RESOURCES_CARD_LINK_TOOLTIP}"
|
|
341
|
+
wrapping="true" />
|
|
342
|
+
</VBox>
|
|
343
|
+
</f:content>
|
|
344
|
+
</f:Card>
|
|
345
|
+
|
|
323
346
|
<!-- SAP Business Application Studio -->
|
|
324
347
|
<f:Card class="sapUiDemoKitResourcesRegularCard">
|
|
325
348
|
<f:header>
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
id="page"
|
|
10
10
|
showHeader="false"
|
|
11
11
|
showNavButton="true"
|
|
12
|
-
navButtonPress="onNavBack"
|
|
12
|
+
navButtonPress=".onNavBack"
|
|
13
13
|
busyIndicatorDelay="0"
|
|
14
14
|
class="sapUiDocumentationSamplePage">
|
|
15
15
|
<landmarkInfo>
|
|
@@ -19,17 +19,17 @@
|
|
|
19
19
|
<subHeader>
|
|
20
20
|
<Bar id="header" class="sapContrast sapContrastPlus">
|
|
21
21
|
<contentLeft>
|
|
22
|
-
<Button type="Back" press="onNavBack" tooltip="{i18n>SAMPLE_BACK_BTN_TOOLTIP}" enabled="{= ${/disableNavBack} === undefined }"/>
|
|
22
|
+
<Button type="Back" press=".onNavBack" tooltip="{i18n>SAMPLE_BACK_BTN_TOOLTIP}" enabled="{= ${/disableNavBack} === undefined }"/>
|
|
23
23
|
</contentLeft>
|
|
24
24
|
<contentMiddle>
|
|
25
25
|
<Title level="H1" text="{/title}" tooltip="{/title}"/>
|
|
26
26
|
<Button
|
|
27
27
|
id="warningSample"
|
|
28
|
-
icon="sap-icon://warning"
|
|
28
|
+
icon="sap-icon://warning"
|
|
29
29
|
visible="{=${/showWarning}}"
|
|
30
30
|
tooltip="{i18n>SAMPLE_EDITED_TOOLTIP}"
|
|
31
31
|
class="sapUiExploredWarningIcon"
|
|
32
|
-
press="onWarningSample"/>
|
|
32
|
+
press=".onWarningSample"/>
|
|
33
33
|
</contentMiddle>
|
|
34
34
|
<contentRight>
|
|
35
35
|
<Button
|
|
@@ -37,23 +37,23 @@
|
|
|
37
37
|
visible="{=${/details} !== undefined || ${/description} !== undefined}"
|
|
38
38
|
icon="sap-icon://hint"
|
|
39
39
|
tooltip="{i18n>SAMPLE_INFO_TOOLTIP}"
|
|
40
|
-
press="onInfoSample"/>
|
|
40
|
+
press=".onInfoSample"/>
|
|
41
41
|
|
|
42
|
-
<Button id="apiRefButton" text="{i18n>SAMPLE_API_REFERENCE_BTN}" type="Emphasized" press="onAPIRefPress" visible="false"/>
|
|
42
|
+
<Button id="apiRefButton" text="{i18n>SAMPLE_API_REFERENCE_BTN}" type="Emphasized" press=".onAPIRefPress" visible="false"/>
|
|
43
43
|
<Button
|
|
44
44
|
id="prevSample"
|
|
45
45
|
icon="sap-icon://navigation-up-arrow"
|
|
46
46
|
class="sapUiHideOnPhone"
|
|
47
47
|
tooltip="{i18n>SAMPLE_PREV_BTN_TOOLTIP}"
|
|
48
48
|
enabled="{= ${/previousSampleId} !== undefined }"
|
|
49
|
-
press="onPreviousSample"/>
|
|
49
|
+
press=".onPreviousSample"/>
|
|
50
50
|
<Button
|
|
51
51
|
id="nextSample"
|
|
52
52
|
icon="sap-icon://navigation-down-arrow"
|
|
53
53
|
class="sapUiHideOnPhone"
|
|
54
54
|
tooltip="{i18n>SAMPLE_NEXT_BTN_TOOLTIP}"
|
|
55
55
|
enabled="{= ${/nextSampleId} !== undefined }"
|
|
56
|
-
press="onNextSample"/>
|
|
56
|
+
press=".onNextSample"/>
|
|
57
57
|
<Button
|
|
58
58
|
id="toggleFullScreenBtn"
|
|
59
59
|
icon="sap-icon://full-screen"
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
( ${device>/system/tablet} &&
|
|
62
62
|
${device>/orientation/landscape} ) }"
|
|
63
63
|
tooltip="{i18n>SAMPLE_FULLSCREEN_BTN_TOOLTIP}"
|
|
64
|
-
press="onToggleFullScreen" />
|
|
64
|
+
press=".onToggleFullScreen" />
|
|
65
65
|
<Button
|
|
66
66
|
id="toggleRTA"
|
|
67
67
|
icon="sap-icon://wrench"
|
|
68
68
|
class="sapUiHideOnPhone"
|
|
69
69
|
tooltip="{i18n>SAMPLE_ADAPT_BTN_TOOLTIP}"
|
|
70
|
-
press="onToggleAdaptationMode"
|
|
70
|
+
press=".onToggleAdaptationMode"
|
|
71
71
|
visible="{= ${/rtaLoaded} && !${/iframe} && !${/external} }"
|
|
72
72
|
enabled="{= !${/rtaStarted}}"/>
|
|
73
73
|
|
|
@@ -75,25 +75,25 @@
|
|
|
75
75
|
id="code"
|
|
76
76
|
icon="sap-icon://source-code"
|
|
77
77
|
tooltip="{i18n>SAMPLE_CODE_BTN_TOOLTIP}"
|
|
78
|
-
press="onNavToCode" />
|
|
78
|
+
press=".onNavToCode" />
|
|
79
79
|
<Button visible="{/showNewTab}"
|
|
80
80
|
id="newTab"
|
|
81
81
|
tooltip="{i18n>SAMPLE_NEW_TAB_BTN_TOOLTIP}"
|
|
82
82
|
icon="sap-icon://inspect"
|
|
83
|
-
press="onNewTab" />
|
|
83
|
+
press=".onNewTab" />
|
|
84
84
|
<Button id="sampleSettings"
|
|
85
85
|
icon="sap-icon://action-settings"
|
|
86
|
-
press="handleSettings"
|
|
86
|
+
press=".handleSettings"
|
|
87
87
|
visible="{= !${/external} }" />
|
|
88
88
|
<Button
|
|
89
89
|
class="sapUiHideOnPhone"
|
|
90
90
|
text="{i18n>SAMPLE_DOWNLOAD_BTN_TOOLTIP}"
|
|
91
91
|
icon="sap-icon://download"
|
|
92
|
-
press="onDownload" />
|
|
92
|
+
press=".onDownload" />
|
|
93
93
|
<Button
|
|
94
94
|
class="sapUiVisibleOnlyOnPhone"
|
|
95
95
|
icon="sap-icon://download"
|
|
96
|
-
press="onDownload" />
|
|
96
|
+
press=".onDownload" />
|
|
97
97
|
</contentRight>
|
|
98
98
|
</Bar>
|
|
99
99
|
</subHeader>
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
<Button
|
|
14
14
|
visible="{device>/system/phone}"
|
|
15
15
|
text="{i18n>NOT_FOUND_BACK}"
|
|
16
|
-
press="onNavBack"
|
|
16
|
+
press=".onNavBack"
|
|
17
17
|
type="Emphasized"/>
|
|
18
18
|
<Button
|
|
19
19
|
text="{i18n>NOT_FOUND_SAMPLE_NAV_TO_SAMPLES}"
|
|
20
|
-
press="onNavToSamples"
|
|
20
|
+
press=".onNavToSamples"
|
|
21
21
|
type="Emphasized"/>
|
|
22
22
|
</VBox>
|
|
23
23
|
</additionalContent>
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
useIconTabBar="true"
|
|
9
9
|
alwaysShowContentHeader="true"
|
|
10
10
|
upperCaseAnchorBar="false"
|
|
11
|
-
navigate="onSwitchTab">
|
|
11
|
+
navigate=".onSwitchTab">
|
|
12
12
|
<op:headerTitle>
|
|
13
13
|
<op:ObjectPageHeader id="searchTitle" objectTitle="{
|
|
14
14
|
parts: [
|
|
@@ -44,12 +44,12 @@
|
|
|
44
44
|
formatter: '.formatTableTitle'
|
|
45
45
|
}"/>
|
|
46
46
|
</OverflowToolbar>
|
|
47
|
-
<CheckBox text="{i18n>API_MASTER_DEPRECATED_CB}" class="sapUiNoMarginBegin" selected="{searchData>/includeDeprecated}" select="onDeprecatedFlagChange"/>
|
|
47
|
+
<CheckBox text="{i18n>API_MASTER_DEPRECATED_CB}" class="sapUiNoMarginBegin" selected="{searchData>/includeDeprecated}" select=".onDeprecatedFlagChange"/>
|
|
48
48
|
<List
|
|
49
49
|
id="allList"
|
|
50
50
|
growing="true"
|
|
51
51
|
growingThreshold="25"
|
|
52
|
-
updateFinished="onAllLoadMore"
|
|
52
|
+
updateFinished=".onAllLoadMore"
|
|
53
53
|
items="{
|
|
54
54
|
path: 'searchData>/matches/data',
|
|
55
55
|
groupHeaderFactory: '.getGroupHeader'
|
|
@@ -90,13 +90,13 @@
|
|
|
90
90
|
}"/>
|
|
91
91
|
</OverflowToolbar>
|
|
92
92
|
|
|
93
|
-
<CheckBox text="{i18n>API_MASTER_DEPRECATED_CB}" class="sapUiNoMarginBegin" selected="{searchData>/includeDeprecated}" select="onDeprecatedFlagChange"/>
|
|
93
|
+
<CheckBox text="{i18n>API_MASTER_DEPRECATED_CB}" class="sapUiNoMarginBegin" selected="{searchData>/includeDeprecated}" select=".onDeprecatedFlagChange"/>
|
|
94
94
|
|
|
95
95
|
<List
|
|
96
96
|
id="apiList"
|
|
97
97
|
growing="true"
|
|
98
98
|
growingThreshold="25"
|
|
99
|
-
updateFinished="onAPILoadMore"
|
|
99
|
+
updateFinished=".onAPILoadMore"
|
|
100
100
|
items="{
|
|
101
101
|
path: 'searchData>/matches/aDataAPI'
|
|
102
102
|
}">
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
id="documentationList"
|
|
141
141
|
growing="true"
|
|
142
142
|
growingThreshold="25"
|
|
143
|
-
updateFinished="onDocLoadMore"
|
|
143
|
+
updateFinished=".onDocLoadMore"
|
|
144
144
|
items="{
|
|
145
145
|
path: 'searchData>/matches/aDataDoc'
|
|
146
146
|
}">
|
|
@@ -180,12 +180,12 @@
|
|
|
180
180
|
formatter: '.formatTableTitle'
|
|
181
181
|
}"/>
|
|
182
182
|
</OverflowToolbar>
|
|
183
|
-
<CheckBox text="{i18n>API_MASTER_DEPRECATED_CB}" class="sapUiNoMarginBegin" selected="{searchData>/includeDeprecated}" select="onDeprecatedFlagChange"/>
|
|
183
|
+
<CheckBox text="{i18n>API_MASTER_DEPRECATED_CB}" class="sapUiNoMarginBegin" selected="{searchData>/includeDeprecated}" select=".onDeprecatedFlagChange"/>
|
|
184
184
|
<List
|
|
185
185
|
id="samplesList"
|
|
186
186
|
growing="true"
|
|
187
187
|
growingThreshold="25"
|
|
188
|
-
updateFinished="onExploredLoadMore"
|
|
188
|
+
updateFinished=".onExploredLoadMore"
|
|
189
189
|
items="{
|
|
190
190
|
path: 'searchData>/matches/aDataExplored'
|
|
191
191
|
}">
|
|
@@ -230,7 +230,7 @@
|
|
|
230
230
|
id="externalList"
|
|
231
231
|
growing="true"
|
|
232
232
|
growingThreshold="25"
|
|
233
|
-
updateFinished="onExternalLoadMore"
|
|
233
|
+
updateFinished=".onExternalLoadMore"
|
|
234
234
|
items="{
|
|
235
235
|
path: 'searchData>/matches/aDataExternal'
|
|
236
236
|
}">
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
showNavButton="true"
|
|
13
13
|
title="{i18n>SITEMAP_TITLE}"
|
|
14
14
|
titleAlignment="Center"
|
|
15
|
-
navButtonPress="onNavButtonPress"
|
|
15
|
+
navButtonPress=".onNavButtonPress"
|
|
16
16
|
class="sapUiDemoKitSitemapPage sapUiContentPadding">
|
|
17
17
|
<content>
|
|
18
18
|
<l:HorizontalLayout class="sapUiDemoKitSitemapLinksWrapper sapUiResponsiveMargin" allowWrapping="true">
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
visible="{device>/system/desktop}"
|
|
46
46
|
icon="sap-icon://full-screen"
|
|
47
47
|
tooltip="Show this sample in full screen mode"
|
|
48
|
-
press="onToggleFullScreen" />
|
|
48
|
+
press=".onToggleFullScreen" />
|
|
49
49
|
</actions>
|
|
50
50
|
</ObjectPageDynamicHeaderTitle>
|
|
51
51
|
<core:ExtensionPoint name="customTitle" />
|
|
@@ -60,8 +60,9 @@
|
|
|
60
60
|
</headerContent>
|
|
61
61
|
|
|
62
62
|
<sections>
|
|
63
|
-
<ObjectPageSection id="overview" title="Overview" titleUppercase="false" visible="{= !!${/description} }"
|
|
64
|
-
|
|
63
|
+
<custom:ObjectPageSection id="overview" title="Overview" titleUppercase="false" visible="{= !!${/description} }"
|
|
64
|
+
showBookmarkIcon="true" bookmarkIconPress="onSectionLinkIconPress">
|
|
65
|
+
<custom:subSections>
|
|
65
66
|
<custom:ObjectPageSubSection>
|
|
66
67
|
<custom:blocks>
|
|
67
68
|
<layout:VerticalLayout width="100%">
|
|
@@ -101,7 +102,7 @@
|
|
|
101
102
|
<template:if test="{data>/hasAnnotations}">
|
|
102
103
|
<layout:HorizontalLayout class="sapUiTinyMarginTop sapUiDocumentationAnnotationsText">
|
|
103
104
|
<m:Text text="A detailed description of the OData annotations handled by this control is available"/>
|
|
104
|
-
<m:Link text="here" press="onAnnotationsLinkPress"/>
|
|
105
|
+
<m:Link text="here" press=".onAnnotationsLinkPress"/>
|
|
105
106
|
<m:Text text="."/>
|
|
106
107
|
</layout:HorizontalLayout>
|
|
107
108
|
<layout:HorizontalLayout class="sapUiDocumentationAnnotationsText">
|
|
@@ -166,14 +167,15 @@
|
|
|
166
167
|
</layout:VerticalLayout>
|
|
167
168
|
</custom:blocks>
|
|
168
169
|
</custom:ObjectPageSubSection>
|
|
169
|
-
</subSections>
|
|
170
|
-
</ObjectPageSection>
|
|
170
|
+
</custom:subSections>
|
|
171
|
+
</custom:ObjectPageSection>
|
|
171
172
|
|
|
172
173
|
<template:if test="{data>/hasProperties}">
|
|
173
|
-
<ObjectPageSection id="properties"
|
|
174
|
+
<custom:ObjectPageSection id="properties"
|
|
174
175
|
title="Fields"
|
|
175
|
-
titleUppercase="false"
|
|
176
|
-
|
|
176
|
+
titleUppercase="false"
|
|
177
|
+
showBookmarkIcon="true" bookmarkIconPress="onSectionLinkIconPress">
|
|
178
|
+
<custom:subSections>
|
|
177
179
|
<custom:ObjectPageSubSection>
|
|
178
180
|
<custom:blocks>
|
|
179
181
|
<custom:LightTable rows="{path : '/properties'}"
|
|
@@ -222,15 +224,16 @@
|
|
|
222
224
|
</custom:LightTable>
|
|
223
225
|
</custom:blocks>
|
|
224
226
|
</custom:ObjectPageSubSection>
|
|
225
|
-
</subSections>
|
|
226
|
-
</ObjectPageSection>
|
|
227
|
+
</custom:subSections>
|
|
228
|
+
</custom:ObjectPageSection>
|
|
227
229
|
</template:if>
|
|
228
230
|
|
|
229
231
|
<template:if test="{data>/hasConstructor}">
|
|
230
|
-
<ObjectPageSection id="constructor"
|
|
232
|
+
<custom:ObjectPageSection id="constructor"
|
|
231
233
|
title="Constructor"
|
|
232
|
-
titleUppercase="false"
|
|
233
|
-
|
|
234
|
+
titleUppercase="false"
|
|
235
|
+
showBookmarkIcon="true" bookmarkIconPress="onSectionLinkIconPress">
|
|
236
|
+
<custom:subSections>
|
|
234
237
|
<custom:ObjectPageSubSection>
|
|
235
238
|
<custom:blocks>
|
|
236
239
|
<layout:VerticalLayout width="100%">
|
|
@@ -273,18 +276,19 @@
|
|
|
273
276
|
</layout:VerticalLayout>
|
|
274
277
|
</custom:blocks>
|
|
275
278
|
</custom:ObjectPageSubSection>
|
|
276
|
-
</subSections>
|
|
277
|
-
</ObjectPageSection>
|
|
279
|
+
</custom:subSections>
|
|
280
|
+
</custom:ObjectPageSection>
|
|
278
281
|
</template:if>
|
|
279
282
|
|
|
280
283
|
<template:if test="{data>/hasControlProperties}">
|
|
281
|
-
<ObjectPageSection id="controlproperties"
|
|
284
|
+
<custom:ObjectPageSection id="controlproperties"
|
|
282
285
|
title="Properties"
|
|
283
|
-
titleUppercase="false"
|
|
284
|
-
|
|
286
|
+
titleUppercase="false"
|
|
287
|
+
showBookmarkIcon="true" bookmarkIconPress="onSectionLinkIconPress">
|
|
288
|
+
<custom:subSections>
|
|
285
289
|
<custom:ObjectPageSubSection>
|
|
286
290
|
<custom:blocks>
|
|
287
|
-
<m:CheckBox text="Show borrowed properties" visible="{/bHasBorrowedProps}" displayOnly="{=!${/bHasSelfProps}}" selected="{=${/bShowBorrowedProps}}" select="onBorrowedPropCheckboxClick"/>
|
|
291
|
+
<m:CheckBox text="Show borrowed properties" visible="{/bHasBorrowedProps}" displayOnly="{=!${/bHasSelfProps}}" selected="{=${/bShowBorrowedProps}}" select=".onBorrowedPropCheckboxClick"/>
|
|
288
292
|
<custom:LightTable rows="{path : '/ui5-metadata/properties'}"
|
|
289
293
|
columnTitles="Name,Type,Default Value,Description"
|
|
290
294
|
columnCount="4"
|
|
@@ -302,7 +306,7 @@
|
|
|
302
306
|
src="sap-icon://sys-help-2"
|
|
303
307
|
color="#286eb4"
|
|
304
308
|
class="sapUiDocumentationVisibilityInformationIcon"
|
|
305
|
-
press="onVisibilityInformationClick">
|
|
309
|
+
press=".onVisibilityInformationClick">
|
|
306
310
|
</core:Icon>
|
|
307
311
|
</layout:HorizontalLayout>
|
|
308
312
|
<m:MessageStrip
|
|
@@ -336,18 +340,19 @@
|
|
|
336
340
|
</custom:LightTable>
|
|
337
341
|
</custom:blocks>
|
|
338
342
|
</custom:ObjectPageSubSection>
|
|
339
|
-
</subSections>
|
|
340
|
-
</ObjectPageSection>
|
|
343
|
+
</custom:subSections>
|
|
344
|
+
</custom:ObjectPageSection>
|
|
341
345
|
</template:if>
|
|
342
346
|
|
|
343
347
|
<template:if test="{data>/hasAggregations}">
|
|
344
|
-
<ObjectPageSection id="aggregations"
|
|
348
|
+
<custom:ObjectPageSection id="aggregations"
|
|
345
349
|
title="Aggregations"
|
|
346
|
-
titleUppercase="false"
|
|
347
|
-
|
|
350
|
+
titleUppercase="false"
|
|
351
|
+
showBookmarkIcon="true" bookmarkIconPress="onSectionLinkIconPress">
|
|
352
|
+
<custom:subSections>
|
|
348
353
|
<custom:ObjectPageSubSection>
|
|
349
354
|
<custom:blocks>
|
|
350
|
-
<m:CheckBox text="Show borrowed aggregations" visible="{/bHasBorrowedAggr}" displayOnly="{=!${/bHasSelfAggr}}" selected="{/bShowBorrowedAggr}" select="onBorrowedAggrCheckboxClick"/>
|
|
355
|
+
<m:CheckBox text="Show borrowed aggregations" visible="{/bHasBorrowedAggr}" displayOnly="{=!${/bHasSelfAggr}}" selected="{/bShowBorrowedAggr}" select=".onBorrowedAggrCheckboxClick"/>
|
|
351
356
|
<custom:LightTable rows="{path : '/ui5-metadata/aggregations'}"
|
|
352
357
|
columnTitles="{= ${data>/hasAggregationAltTypes} ? 'Name,Cardinality,Type,Alt types,Description' : 'Name,Cardinality,Type,Description'}"
|
|
353
358
|
columnCount="{= ${data>/hasAggregationAltTypes} ? 5 : 4}"
|
|
@@ -410,18 +415,19 @@
|
|
|
410
415
|
</custom:LightTable>
|
|
411
416
|
</custom:blocks>
|
|
412
417
|
</custom:ObjectPageSubSection>
|
|
413
|
-
</subSections>
|
|
414
|
-
</ObjectPageSection>
|
|
418
|
+
</custom:subSections>
|
|
419
|
+
</custom:ObjectPageSection>
|
|
415
420
|
</template:if>
|
|
416
421
|
|
|
417
422
|
<template:if test="{data>/hasAssociations}">
|
|
418
|
-
<ObjectPageSection id="associations"
|
|
423
|
+
<custom:ObjectPageSection id="associations"
|
|
419
424
|
title="Associations"
|
|
420
|
-
titleUppercase="false"
|
|
421
|
-
|
|
425
|
+
titleUppercase="false"
|
|
426
|
+
showBookmarkIcon="true" bookmarkIconPress="onSectionLinkIconPress">
|
|
427
|
+
<custom:subSections>
|
|
422
428
|
<custom:ObjectPageSubSection>
|
|
423
429
|
<custom:blocks>
|
|
424
|
-
<m:CheckBox text="Show borrowed associations" visible="{/bHasBorrowedAssoc}" displayOnly="{=!${/bHasSelfAssoc}}" selected="{/bShowBorrowedAssoc}" select="onBorrowedAssocCheckboxClick"/>
|
|
430
|
+
<m:CheckBox text="Show borrowed associations" visible="{/bHasBorrowedAssoc}" displayOnly="{=!${/bHasSelfAssoc}}" selected="{/bShowBorrowedAssoc}" select=".onBorrowedAssocCheckboxClick"/>
|
|
425
431
|
<custom:LightTable rows="{path : '/ui5-metadata/associations'}"
|
|
426
432
|
columnCount="4"
|
|
427
433
|
columnTitles="Name,Cardinality,Type,Description"
|
|
@@ -465,15 +471,16 @@
|
|
|
465
471
|
</custom:LightTable>
|
|
466
472
|
</custom:blocks>
|
|
467
473
|
</custom:ObjectPageSubSection>
|
|
468
|
-
</subSections>
|
|
469
|
-
</ObjectPageSection>
|
|
474
|
+
</custom:subSections>
|
|
475
|
+
</custom:ObjectPageSection>
|
|
470
476
|
</template:if>
|
|
471
477
|
|
|
472
478
|
<template:if test="{data>/hasEvents}">
|
|
473
|
-
<ObjectPageSection id="events"
|
|
479
|
+
<custom:ObjectPageSection id="events"
|
|
474
480
|
title="Events"
|
|
475
|
-
titleUppercase="false"
|
|
476
|
-
|
|
481
|
+
titleUppercase="false"
|
|
482
|
+
showBookmarkIcon="true" bookmarkIconPress="onSectionLinkIconPress">
|
|
483
|
+
<custom:subSections>
|
|
477
484
|
<custom:ObjectPageSubSection title="{= ${data>/hasEvents} && !${data>/hasOwnEvents} ? 'Events' : 'Summary'}">
|
|
478
485
|
<custom:blocks>
|
|
479
486
|
<layout:VerticalLayout width="100%">
|
|
@@ -506,7 +513,8 @@
|
|
|
506
513
|
</custom:ObjectPageSubSection>
|
|
507
514
|
|
|
508
515
|
<template:repeat list="{data>/events}" var="event">
|
|
509
|
-
<custom:ObjectPageSubSection title="{event>name}"
|
|
516
|
+
<custom:ObjectPageSubSection title="{event>name}"
|
|
517
|
+
showBookmarkIcon="true" bookmarkIconPress="onSubSectionLinkIconPress">
|
|
510
518
|
<custom:blocks>
|
|
511
519
|
<layout:VerticalLayout width="100%">
|
|
512
520
|
|
|
@@ -519,7 +527,7 @@
|
|
|
519
527
|
src="sap-icon://sys-help-2"
|
|
520
528
|
color="#286eb4"
|
|
521
529
|
class="sapUiDocumentationVisibilityInformationIcon"
|
|
522
|
-
press="onVisibilityInformationClick">
|
|
530
|
+
press=".onVisibilityInformationClick">
|
|
523
531
|
</core:Icon>
|
|
524
532
|
</layout:HorizontalLayout>
|
|
525
533
|
<template:if test="{=${event>deprecated} !== undefined}">
|
|
@@ -567,16 +575,17 @@
|
|
|
567
575
|
</custom:blocks>
|
|
568
576
|
</custom:ObjectPageSubSection>
|
|
569
577
|
</template:repeat>
|
|
570
|
-
</subSections>
|
|
571
|
-
</ObjectPageSection>
|
|
578
|
+
</custom:subSections>
|
|
579
|
+
</custom:ObjectPageSection>
|
|
572
580
|
</template:if>
|
|
573
581
|
|
|
574
582
|
<template:if test="{data>/hasMethods}">
|
|
575
|
-
<ObjectPageSection id="methods"
|
|
583
|
+
<custom:ObjectPageSection id="methods"
|
|
576
584
|
title="Methods"
|
|
577
585
|
titleUppercase="false"
|
|
578
|
-
class="APIDetailMethodsSection"
|
|
579
|
-
|
|
586
|
+
class="APIDetailMethodsSection"
|
|
587
|
+
showBookmarkIcon="true" bookmarkIconPress="onSectionLinkIconPress">
|
|
588
|
+
<custom:subSections>
|
|
580
589
|
|
|
581
590
|
<custom:ObjectPageSubSection title="{= ${data>/hasMethods} && !${data>/hasOwnMethods} ? 'Methods' : 'Summary'}">
|
|
582
591
|
<custom:blocks>
|
|
@@ -611,7 +620,8 @@
|
|
|
611
620
|
</custom:ObjectPageSubSection>
|
|
612
621
|
|
|
613
622
|
<template:repeat list="{data>/methods}" var="method">
|
|
614
|
-
<custom:ObjectPageSubSection title="{method>name}" id="{method>placeholderId}"
|
|
623
|
+
<custom:ObjectPageSubSection title="{method>name}" id="{method>placeholderId}"
|
|
624
|
+
showBookmarkIcon="true" bookmarkIconPress="onSubSectionLinkIconPress">
|
|
615
625
|
<custom:blocks>
|
|
616
626
|
|
|
617
627
|
<ObjectPageLazyLoader stashed="true" id="{method>subPlaceholderId}">
|
|
@@ -634,7 +644,7 @@
|
|
|
634
644
|
src="sap-icon://sys-help-2"
|
|
635
645
|
color="#286eb4"
|
|
636
646
|
class="sapUiDocumentationVisibilityInformationIcon sapUiTinyMarginEnd"
|
|
637
|
-
press="onVisibilityInformationClick">
|
|
647
|
+
press=".onVisibilityInformationClick">
|
|
638
648
|
</core:Icon>
|
|
639
649
|
<m:ObjectStatus visible="{=${method>since} !== undefined}" text="Since: {method>since}"/>
|
|
640
650
|
</layout:HorizontalLayout>
|
|
@@ -712,15 +722,16 @@
|
|
|
712
722
|
</custom:blocks>
|
|
713
723
|
</custom:ObjectPageSubSection>
|
|
714
724
|
</template:repeat>
|
|
715
|
-
</subSections>
|
|
716
|
-
</ObjectPageSection>
|
|
725
|
+
</custom:subSections>
|
|
726
|
+
</custom:ObjectPageSection>
|
|
717
727
|
</template:if>
|
|
718
728
|
|
|
719
729
|
<template:if test="{data>/hasSpecialSettings}">
|
|
720
|
-
<ObjectPageSection id="specialsettings"
|
|
730
|
+
<custom:ObjectPageSection id="specialsettings"
|
|
721
731
|
title="Special Settings"
|
|
722
|
-
titleUppercase="false"
|
|
723
|
-
|
|
732
|
+
titleUppercase="false"
|
|
733
|
+
showBookmarkIcon="true" bookmarkIconPress="onSectionLinkIconPress">
|
|
734
|
+
<custom:subSections>
|
|
724
735
|
<custom:ObjectPageSubSection>
|
|
725
736
|
<custom:blocks>
|
|
726
737
|
<custom:LightTable rows="{path : '/ui5-metadata/specialSettings'}"
|
|
@@ -735,15 +746,16 @@
|
|
|
735
746
|
</custom:LightTable>
|
|
736
747
|
</custom:blocks>
|
|
737
748
|
</custom:ObjectPageSubSection>
|
|
738
|
-
</subSections>
|
|
739
|
-
</ObjectPageSection>
|
|
749
|
+
</custom:subSections>
|
|
750
|
+
</custom:ObjectPageSection>
|
|
740
751
|
</template:if>
|
|
741
752
|
|
|
742
753
|
<template:if test="{data>/hasAnnotations}">
|
|
743
|
-
<ObjectPageSection id="annotations"
|
|
754
|
+
<custom:ObjectPageSection id="annotations"
|
|
744
755
|
title="Annotations"
|
|
745
|
-
titleUppercase="false"
|
|
746
|
-
|
|
756
|
+
titleUppercase="false"
|
|
757
|
+
showBookmarkIcon="true" bookmarkIconPress="onSectionLinkIconPress">
|
|
758
|
+
<custom:subSections>
|
|
747
759
|
<custom:ObjectPageSubSection title="Summary">
|
|
748
760
|
<custom:blocks>
|
|
749
761
|
<custom:LightTable columnCount="2" columnTitles="Annotation,Description">
|
|
@@ -760,7 +772,8 @@
|
|
|
760
772
|
</custom:ObjectPageSubSection>
|
|
761
773
|
|
|
762
774
|
<template:repeat list="{data>/ui5-metadata/annotations}" var="annotation">
|
|
763
|
-
<custom:ObjectPageSubSection title="{= ${annotation>annotation} !== 'undefined' ? ${annotation>annotation} : '(' + ${annotation>namespaceText} + ')' }"
|
|
775
|
+
<custom:ObjectPageSubSection title="{= ${annotation>annotation} !== 'undefined' ? ${annotation>annotation} : '(' + ${annotation>namespaceText} + ')' }"
|
|
776
|
+
showBookmarkIcon="true" bookmarkIconPress="onSubSectionLinkIconPress">
|
|
764
777
|
<custom:blocks>
|
|
765
778
|
<layout:VerticalLayout width="100%">
|
|
766
779
|
|
|
@@ -778,8 +791,8 @@
|
|
|
778
791
|
</custom:blocks>
|
|
779
792
|
</custom:ObjectPageSubSection>
|
|
780
793
|
</template:repeat>
|
|
781
|
-
</subSections>
|
|
782
|
-
</ObjectPageSection>
|
|
794
|
+
</custom:subSections>
|
|
795
|
+
</custom:ObjectPageSection>
|
|
783
796
|
</template:if>
|
|
784
797
|
|
|
785
798
|
</sections>
|