@openui5/sap.ui.documentation 1.141.2 → 1.143.0
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/README.md +2 -2
- package/REUSE.toml +39 -1
- package/THIRDPARTY.txt +36 -3
- package/package.json +7 -7
- package/src/sap/ui/documentation/.library +1 -1
- package/src/sap/ui/documentation/library.js +2 -2
- package/src/sap/ui/documentation/messagebundle.properties +22 -14
- package/src/sap/ui/documentation/messagebundle_ar.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_bg.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_ca.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_cnr.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_cs.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_cy.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_da.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_de.properties +12 -8
- package/src/sap/ui/documentation/messagebundle_el.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_en.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_en_GB.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_en_US_saprigi.properties +7 -3
- package/src/sap/ui/documentation/messagebundle_es.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_es_MX.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_et.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_fi.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_fr.properties +12 -8
- package/src/sap/ui/documentation/messagebundle_fr_CA.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_hi.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_hr.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_hu.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_id.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_it.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_iw.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_ja.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_kk.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_ko.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_lt.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_lv.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_mk.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_ms.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_nl.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_no.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_pl.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_pt.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_pt_PT.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_ro.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_ru.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_sh.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_sk.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_sl.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_sr.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_sv.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_th.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_tr.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_uk.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_vi.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_zh_CN.properties +11 -7
- package/src/sap/ui/documentation/messagebundle_zh_TW.properties +11 -7
- package/src/sap/ui/documentation/sdk/controller/ReleaseNotes.controller.js +76 -12
- package/src/sap/ui/documentation/sdk/controller/util/ResourcesInfo.js +8 -8
- package/src/sap/ui/documentation/sdk/controller/util/UsageTracker.js +2 -1
- package/src/sap/ui/documentation/sdk/css/style.css +19 -0
- package/src/sap/ui/documentation/sdk/images/Fiori_dev_portal.png +0 -0
- package/src/sap/ui/documentation/sdk/images/logo_bsky.png +0 -0
- package/src/sap/ui/documentation/sdk/images/logo_linkedin.png +0 -0
- package/src/sap/ui/documentation/sdk/thirdparty/highlight.js/highlight.js +3 -3
- package/src/sap/ui/documentation/sdk/view/FioriDevelopmentRowSAPUI5.fragment.xml +87 -0
- package/src/sap/ui/documentation/sdk/view/ReleaseNotes.view.xml +5 -4
- package/src/sap/ui/documentation/sdk/view/Resources.view.xml +31 -31
- package/src/sap/ui/documentation/sdk/view/StartCodingRowOpenUI5.fragment.xml +65 -0
- package/src/sap/ui/documentation/sdk/view/Welcome.view.xml +95 -130
- package/src/sap/ui/documentation/sdk/view/WelcomeCustomRowSAPUI5.fragment.xml +29 -30
|
@@ -49,7 +49,7 @@ sap.ui.define([
|
|
|
49
49
|
return;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
oVersion = Version(oAppInfo.version);
|
|
52
|
+
oVersion = new Version(oAppInfo.version);
|
|
53
53
|
iMajor = oVersion.getMajor();
|
|
54
54
|
iMinor = oVersion.getMinor();
|
|
55
55
|
|
|
@@ -85,7 +85,7 @@ sap.ui.define([
|
|
|
85
85
|
|
|
86
86
|
this.appendPageTitle(this.getModel("i18n").getProperty("RELEASE_NOTES_TITLE"));
|
|
87
87
|
},
|
|
88
|
-
_processLibInfo: function (aLibs, oLibInfos) {
|
|
88
|
+
_processLibInfo: function (aLibs, oLibInfos, oAppInfo) {
|
|
89
89
|
var iReleaseNotes,
|
|
90
90
|
aReturnLibs = [],
|
|
91
91
|
iLength = Array.isArray(aLibs) ? aLibs.length : 0,
|
|
@@ -93,26 +93,56 @@ sap.ui.define([
|
|
|
93
93
|
i;
|
|
94
94
|
|
|
95
95
|
fnProcessLib = function(sVersion, oValue) {
|
|
96
|
+
// Ensure notes array exists before processing
|
|
97
|
+
if (!oValue.notes || !Array.isArray(oValue.notes)) {
|
|
98
|
+
return;
|
|
99
|
+
}
|
|
100
|
+
|
|
96
101
|
iReleaseNotes += oValue.notes.length;
|
|
97
102
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
103
|
+
// Enhance each note with version information
|
|
104
|
+
var aEnhancedNotes = oValue.notes.map(function(oNote) {
|
|
105
|
+
return {
|
|
106
|
+
type: oNote.type,
|
|
107
|
+
text: oNote.text,
|
|
108
|
+
version: sVersion
|
|
109
|
+
};
|
|
101
110
|
});
|
|
102
111
|
|
|
103
|
-
|
|
104
|
-
|
|
112
|
+
// Check if version already exists
|
|
113
|
+
var oExistingVersion = aLibs[i].versions.find(function(v) {
|
|
114
|
+
return v.version === sVersion;
|
|
105
115
|
});
|
|
106
|
-
};
|
|
107
116
|
|
|
108
|
-
|
|
117
|
+
if (oExistingVersion) {
|
|
118
|
+
// Append notes to existing version
|
|
119
|
+
oExistingVersion.notes = oExistingVersion.notes.concat(aEnhancedNotes);
|
|
120
|
+
} else {
|
|
121
|
+
// Create new version entry
|
|
122
|
+
aLibs[i].versions.push({
|
|
123
|
+
version : sVersion,
|
|
124
|
+
notes : aEnhancedNotes,
|
|
125
|
+
distributionPatch: this._getDistributionPatch(oAppInfo, aLibs[i].library, sVersion)
|
|
126
|
+
});
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
}.bind(this);
|
|
109
130
|
|
|
131
|
+
for (i = 0; i < iLength; i++) {
|
|
132
|
+
var sLibraryName = aLibs[i]; // Preserve library name
|
|
110
133
|
aLibs[i] = oLibInfos[aLibs[i]];
|
|
134
|
+
aLibs[i].library = sLibraryName; // Store library name
|
|
111
135
|
aLibs[i].versions = [];
|
|
112
136
|
|
|
113
137
|
if (aLibs[i].relnotes) {
|
|
114
138
|
iReleaseNotes = 0;
|
|
115
139
|
jQuery.each(aLibs[i].relnotes, fnProcessLib);
|
|
140
|
+
|
|
141
|
+
// Sort versions after all have been processed
|
|
142
|
+
aLibs[i].versions.sort(function(a, b) {
|
|
143
|
+
return new Version(b.version).compareTo(a.version);
|
|
144
|
+
});
|
|
145
|
+
|
|
116
146
|
// We publish the library in the model only if there are release notes available
|
|
117
147
|
if (iReleaseNotes > 0) {
|
|
118
148
|
aReturnLibs.push(aLibs[i]);
|
|
@@ -147,11 +177,13 @@ sap.ui.define([
|
|
|
147
177
|
},
|
|
148
178
|
/**
|
|
149
179
|
* Compares 2 UI5 version strings taking into account only major and minor version info
|
|
150
|
-
* @
|
|
180
|
+
* @param {string} sVersionA First version string to compare
|
|
181
|
+
* @param {string} sVersionB Second version string to compare
|
|
182
|
+
* @returns {boolean} True if major.minor versions are equal, false otherwise
|
|
151
183
|
*/
|
|
152
184
|
_compareUI5Versions: function (sVersionA, sVersionB) {
|
|
153
|
-
var oVA = Version(sVersionA),
|
|
154
|
-
oVB = Version(sVersionB);
|
|
185
|
+
var oVA = new Version(sVersionA),
|
|
186
|
+
oVB = new Version(sVersionB);
|
|
155
187
|
|
|
156
188
|
return (oVA.getMajor() + "." + oVA.getMinor()) === (oVB.getMajor() + "." + oVB.getMinor());
|
|
157
189
|
},
|
|
@@ -196,6 +228,38 @@ sap.ui.define([
|
|
|
196
228
|
this._processLibInfo.bind(this));
|
|
197
229
|
},
|
|
198
230
|
|
|
231
|
+
/**
|
|
232
|
+
* Simplified distribution patch mapping using already available version info
|
|
233
|
+
* @param {object} oAppInfo - Version info already loaded by the system
|
|
234
|
+
* @param {string} sLibraryName - Library name
|
|
235
|
+
* @param {string} sLibraryVersion - Library version
|
|
236
|
+
* @returns {string} Distribution patch version or library version if no mapping found
|
|
237
|
+
* @private
|
|
238
|
+
*/
|
|
239
|
+
_getDistributionPatch: function(oAppInfo, sLibraryName, sLibraryVersion) {
|
|
240
|
+
if (!oAppInfo || !oAppInfo.libraries) {
|
|
241
|
+
return sLibraryVersion;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
var oLibrary = oAppInfo.libraries.find(function(lib) {
|
|
245
|
+
return lib.name === sLibraryName;
|
|
246
|
+
});
|
|
247
|
+
|
|
248
|
+
if (!oLibrary || !oLibrary.patchHistory) {
|
|
249
|
+
return sLibraryVersion;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
// Find the patch where this library version was first shipped
|
|
253
|
+
for (var patch in oLibrary.patchHistory) {
|
|
254
|
+
if (oLibrary.patchHistory[patch] === sLibraryVersion) {
|
|
255
|
+
var oVersion = new Version(oAppInfo.version);
|
|
256
|
+
return oVersion.getMajor() + "." + oVersion.getMinor() + "." + patch;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
return sLibraryVersion;
|
|
261
|
+
},
|
|
262
|
+
|
|
199
263
|
_showBusyIndicator: function () {
|
|
200
264
|
this.byId("releaseNotesObjectPage").setBusy(true);
|
|
201
265
|
},
|
|
@@ -11,6 +11,12 @@ sap.ui.define([],
|
|
|
11
11
|
|
|
12
12
|
var aResources = [
|
|
13
13
|
// #1 Category: Featured
|
|
14
|
+
{
|
|
15
|
+
"id": "fioriDevPortal",
|
|
16
|
+
"text": "SAP Fiori Development Portal",
|
|
17
|
+
"href": "test-resources/sap/fe/core/fpmExplorer/index.html#/topic/introduction",
|
|
18
|
+
"isDistributionScope": true
|
|
19
|
+
},
|
|
14
20
|
{
|
|
15
21
|
"id": "iconExplorer",
|
|
16
22
|
"text": "Icon Explorer",
|
|
@@ -25,8 +31,8 @@ sap.ui.define([],
|
|
|
25
31
|
// #2 Category: Development Tools
|
|
26
32
|
{
|
|
27
33
|
"id": "tooling",
|
|
28
|
-
"text": "UI5
|
|
29
|
-
"href": "https://
|
|
34
|
+
"text": "UI5 CLI",
|
|
35
|
+
"href": "https://ui5.github.io/cli/"
|
|
30
36
|
},
|
|
31
37
|
{
|
|
32
38
|
"id": "fioriTools",
|
|
@@ -48,12 +54,6 @@ sap.ui.define([],
|
|
|
48
54
|
"text": "UI5 MCP server",
|
|
49
55
|
"href": "https://github.com/UI5/mcp-server"
|
|
50
56
|
},
|
|
51
|
-
{
|
|
52
|
-
"id": "fpmExplorer",
|
|
53
|
-
"text": "Flexible Programming Model Explorer",
|
|
54
|
-
"href": "test-resources/sap/fe/core/fpmExplorer/index.html#/overview/introduction",
|
|
55
|
-
"isDistributionScope": true
|
|
56
|
-
},
|
|
57
57
|
{
|
|
58
58
|
"id": "businessAppStudio",
|
|
59
59
|
"text": "SAP Business Application Studio",
|
|
@@ -31,7 +31,8 @@ sap.ui.define(
|
|
|
31
31
|
this.section = sSectionTitle || "/";
|
|
32
32
|
this.title = undefined;
|
|
33
33
|
this.language = oUserLanguageTag.language;
|
|
34
|
-
this.
|
|
34
|
+
this.locale = oUserLanguageTag.toString();
|
|
35
|
+
this.country = "glo";
|
|
35
36
|
this.referrer = document.referrer;
|
|
36
37
|
};
|
|
37
38
|
|
|
@@ -146,6 +146,11 @@ pre.sapUiDocumentationAPICode,
|
|
|
146
146
|
#teconsent > a {
|
|
147
147
|
display: none;
|
|
148
148
|
}
|
|
149
|
+
|
|
150
|
+
/* remove obsolete padding on the TrustArc consent bar that only causes a layout issue */
|
|
151
|
+
#consent_blackbar {
|
|
152
|
+
padding: 0;
|
|
153
|
+
}
|
|
149
154
|
/************************************************* Custom control styles *********************************************/
|
|
150
155
|
|
|
151
156
|
|
|
@@ -1827,4 +1832,18 @@ table.cookieList {
|
|
|
1827
1832
|
table.cookieList td {
|
|
1828
1833
|
padding: 1rem;
|
|
1829
1834
|
border-bottom: 2px solid var(--sapList_BorderColor);
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
.sapUiCommunityLinkLogo {
|
|
1838
|
+
margin-top: 1rem;
|
|
1839
|
+
}
|
|
1840
|
+
|
|
1841
|
+
.sapUiCommunityLinkTitle {
|
|
1842
|
+
font-size: 2rem;
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
@media (max-width: 59.375em) {
|
|
1846
|
+
.sapUiCommunityLinkTitle {
|
|
1847
|
+
font-size: 1.325rem;
|
|
1848
|
+
}
|
|
1830
1849
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -998,10 +998,10 @@ var hljs = (function () {
|
|
|
998
998
|
* @param {string} message
|
|
999
999
|
*/
|
|
1000
1000
|
const deprecated = (version, message) => {
|
|
1001
|
-
if (seenDeprecations[`1.
|
|
1001
|
+
if (seenDeprecations[`1.143.0/${message}`]) return;
|
|
1002
1002
|
|
|
1003
|
-
console.log(`Deprecated as of 1.
|
|
1004
|
-
seenDeprecations[`1.
|
|
1003
|
+
console.log(`Deprecated as of 1.143.0. ${message}`);
|
|
1004
|
+
seenDeprecations[`1.143.0/${message}`] = true;
|
|
1005
1005
|
};
|
|
1006
1006
|
|
|
1007
1007
|
/* eslint-disable no-throw-literal */
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
<core:FragmentDefinition
|
|
2
|
+
xmlns="sap.m"
|
|
3
|
+
xmlns:core="sap.ui.core"
|
|
4
|
+
xmlns:custom="sap.ui.documentation"
|
|
5
|
+
xmlns:l="sap.ui.layout">
|
|
6
|
+
<Panel visible="{=!${versionData>/isOpenUI5}}"
|
|
7
|
+
accessibleRole="Region"
|
|
8
|
+
backgroundDesign="Transparent"
|
|
9
|
+
class="sapUiNoContentPadding">
|
|
10
|
+
<headerToolbar>
|
|
11
|
+
<Toolbar class="headlineCell">
|
|
12
|
+
<Title width="100%"
|
|
13
|
+
text="{i18n>WELCOME_FIORI_DESIGN_DEVELOPMENT}"
|
|
14
|
+
level="H1"
|
|
15
|
+
titleStyle="H1"
|
|
16
|
+
class="sapUiMediumMarginTopBottom" />
|
|
17
|
+
</Toolbar>
|
|
18
|
+
</headerToolbar>
|
|
19
|
+
<l:BlockLayout>
|
|
20
|
+
<l:BlockLayoutRow>
|
|
21
|
+
<l:BlockLayoutCell
|
|
22
|
+
backgroundColorSet="ColorSet10"
|
|
23
|
+
backgroundColorShade="ShadeA">
|
|
24
|
+
<l:Grid
|
|
25
|
+
defaultSpan="L6 M12 S12"
|
|
26
|
+
hSpacing="0"
|
|
27
|
+
vSpacing="0">
|
|
28
|
+
<l:VerticalLayout width="100%">
|
|
29
|
+
<custom:DivContainer class="sapUIDisclaimerLink sapUiSmallMarginBottom">
|
|
30
|
+
<custom:TitleLink
|
|
31
|
+
href="https://experience.sap.com/fiori-design/"
|
|
32
|
+
text="{i18n>WELCOME_BLOCK_5_TITLE}"
|
|
33
|
+
titleStyle="H2"
|
|
34
|
+
target="_blank" />
|
|
35
|
+
<Image
|
|
36
|
+
src="./resources/sap/ui/documentation/sdk/images/link-sap.png"
|
|
37
|
+
tooltip="{i18n>LEGAL_DISCLAIMER_EXTERNAL_TOOLTIP}"
|
|
38
|
+
width="1.25rem"
|
|
39
|
+
press="onDisclaimerLinkPress" />
|
|
40
|
+
</custom:DivContainer>
|
|
41
|
+
<Text
|
|
42
|
+
text="{i18n>WELCOME_BLOCK_5_TEXT}"
|
|
43
|
+
class="sapUiSmallMarginBottom" />
|
|
44
|
+
</l:VerticalLayout>
|
|
45
|
+
<Image
|
|
46
|
+
src="./resources/sap/ui/documentation/sdk/images/Fiori_design_examples.png"
|
|
47
|
+
alt="{i18n>WELCOME_BLOCK_5_IMG_ALT}"
|
|
48
|
+
densityAware="false"
|
|
49
|
+
width="100%">
|
|
50
|
+
<layoutData>
|
|
51
|
+
<l:GridData span="L6 M12 S12" />
|
|
52
|
+
</layoutData>
|
|
53
|
+
</Image>
|
|
54
|
+
</l:Grid>
|
|
55
|
+
</l:BlockLayoutCell>
|
|
56
|
+
|
|
57
|
+
<l:BlockLayoutCell
|
|
58
|
+
backgroundColorSet="ColorSet10"
|
|
59
|
+
backgroundColorShade="ShadeA">
|
|
60
|
+
<l:Grid
|
|
61
|
+
defaultSpan="L6 M12 S12"
|
|
62
|
+
hSpacing="0"
|
|
63
|
+
vSpacing="0">
|
|
64
|
+
<l:VerticalLayout
|
|
65
|
+
width="100%">
|
|
66
|
+
<custom:TitleLink
|
|
67
|
+
href="test-resources/sap/fe/core/fpmExplorer/index.html#/topic/introduction"
|
|
68
|
+
text="{i18n>WELCOME_BLOCK_14_TITLE}"
|
|
69
|
+
titleStyle="H2"
|
|
70
|
+
class="sapUiSmallMarginBottom" />
|
|
71
|
+
<Text text="{i18n>WELCOME_BLOCK_14_TEXT}" class="sapUiSmallMarginBottom" />
|
|
72
|
+
</l:VerticalLayout>
|
|
73
|
+
<Image
|
|
74
|
+
src="./resources/sap/ui/documentation/sdk/images/Fiori_dev_portal.png"
|
|
75
|
+
alt="{i18n>WELCOME_BLOCK_14_IMG_ALT}"
|
|
76
|
+
densityAware="false"
|
|
77
|
+
width="100%">
|
|
78
|
+
<layoutData>
|
|
79
|
+
<l:GridData span="L6 M12 S12" />
|
|
80
|
+
</layoutData>
|
|
81
|
+
</Image>
|
|
82
|
+
</l:Grid>
|
|
83
|
+
</l:BlockLayoutCell>
|
|
84
|
+
</l:BlockLayoutRow>
|
|
85
|
+
</l:BlockLayout>
|
|
86
|
+
</Panel>
|
|
87
|
+
</core:FragmentDefinition>
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
<headerContent>
|
|
23
23
|
<layout:VerticalLayout>
|
|
24
|
-
<m:Text text="This log includes the library notes for the libraries listed below."/>
|
|
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
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>
|
|
@@ -34,13 +34,14 @@
|
|
|
34
34
|
<ObjectPageSubSection titleUppercase="false">
|
|
35
35
|
<layout:VerticalLayout content="{path: 'versions', templateShareable: false}" width="100%">
|
|
36
36
|
<m:Panel
|
|
37
|
-
headerText="{
|
|
38
|
-
content="{path: 'notes', templateShareable: false}"
|
|
37
|
+
headerText="{distributionPatch}"
|
|
39
38
|
expandable="true"
|
|
40
39
|
expanded="true"
|
|
41
40
|
class="sapUxAPObjectPageSubSectionAlignContent"
|
|
42
41
|
width="auto">
|
|
43
|
-
<
|
|
42
|
+
<layout:VerticalLayout content="{path: 'notes', templateShareable: false}" width="100%">
|
|
43
|
+
<m:Text width="100%" text="[{type}] {text} (included in {version})"/>
|
|
44
|
+
</layout:VerticalLayout>
|
|
44
45
|
</m:Panel>
|
|
45
46
|
</layout:VerticalLayout>
|
|
46
47
|
</ObjectPageSubSection>
|
|
@@ -89,6 +89,33 @@
|
|
|
89
89
|
</grid:GridResponsiveLayout>
|
|
90
90
|
</grid:customLayout>
|
|
91
91
|
|
|
92
|
+
<!-- SAP Fiori Development Portal -->
|
|
93
|
+
<f:Card class="sapUiDemoKitResourcesRegularCard"
|
|
94
|
+
visible="{
|
|
95
|
+
path: 'resources>/fioriDevPortal',
|
|
96
|
+
formatter: '.formatter.formatResourceCardVisibility'
|
|
97
|
+
}">
|
|
98
|
+
<f:header>
|
|
99
|
+
<card:Header title="{i18n>RESOURCES_CARD_TITLE_FIORI_DEV_PORTAL}" iconSrc="sap-icon://explorer" />
|
|
100
|
+
</f:header>
|
|
101
|
+
<f:content>
|
|
102
|
+
<VBox class="sapUiDemoKitResourcesCardContentSpacing" wrap="Wrap">
|
|
103
|
+
<Text text="{i18n>RESOURCES_CARD_DESC_FIORI_DEV_PORTAL}">
|
|
104
|
+
<layoutData>
|
|
105
|
+
<FlexItemData growFactor="1" />
|
|
106
|
+
</layoutData>
|
|
107
|
+
</Text>
|
|
108
|
+
<Link
|
|
109
|
+
class="sapUiDemoKitResourcesCardLink"
|
|
110
|
+
href="{resources>/fioriDevPortal/href}"
|
|
111
|
+
target="_blank"
|
|
112
|
+
text="{i18n>RESOURCES_CARD_LINK_FIORI_DEV_PORTAL}"
|
|
113
|
+
tooltip="{i18n>RESOURCES_CARD_LINK_TOOLTIP}"
|
|
114
|
+
wrapping="true" />
|
|
115
|
+
</VBox>
|
|
116
|
+
</f:content>
|
|
117
|
+
</f:Card>
|
|
118
|
+
|
|
92
119
|
<!-- Icon Explorer -->
|
|
93
120
|
<f:Card class="sapUiDemoKitResourcesRegularCard">
|
|
94
121
|
<f:header>
|
|
@@ -178,14 +205,14 @@
|
|
|
178
205
|
</grid:GridResponsiveLayout>
|
|
179
206
|
</grid:customLayout>
|
|
180
207
|
|
|
181
|
-
<!-- UI5
|
|
208
|
+
<!-- UI5 CLI -->
|
|
182
209
|
<f:Card class="sapUiDemoKitResourcesRegularCard">
|
|
183
210
|
<f:header>
|
|
184
|
-
<card:Header title="{i18n>
|
|
211
|
+
<card:Header title="{i18n>RESOURCES_CARD_TITLE_UI5_CLI}" iconSrc="sap-icon://hello-world" />
|
|
185
212
|
</f:header>
|
|
186
213
|
<f:content>
|
|
187
214
|
<VBox class="sapUiDemoKitResourcesCardContentSpacing" wrap="Wrap">
|
|
188
|
-
<Text text="{i18n>
|
|
215
|
+
<Text text="{i18n>RESOURCES_CARD_DESC_UI5_CLI}">
|
|
189
216
|
<layoutData>
|
|
190
217
|
<FlexItemData growFactor="1" />
|
|
191
218
|
</layoutData>
|
|
@@ -194,7 +221,7 @@
|
|
|
194
221
|
class="sapUiDemoKitResourcesCardLink"
|
|
195
222
|
href="{resources>/tooling/href}"
|
|
196
223
|
target="_blank"
|
|
197
|
-
text="{i18n>
|
|
224
|
+
text="{i18n>RESOURCES_CARD_LINK_UI5_CLI}"
|
|
198
225
|
tooltip="{i18n>RESOURCES_CARD_LINK_TOOLTIP}"
|
|
199
226
|
wrapping="true" />
|
|
200
227
|
</VBox>
|
|
@@ -293,33 +320,6 @@
|
|
|
293
320
|
</f:content>
|
|
294
321
|
</f:Card>
|
|
295
322
|
|
|
296
|
-
<!-- Flexible Programming Model Explorer -->
|
|
297
|
-
<f:Card class="sapUiDemoKitResourcesRegularCard"
|
|
298
|
-
visible="{
|
|
299
|
-
path: 'resources>/fpmExplorer',
|
|
300
|
-
formatter: '.formatter.formatResourceCardVisibility'
|
|
301
|
-
}">
|
|
302
|
-
<f:header>
|
|
303
|
-
<card:Header title="{i18n>RESOURCES_CARD_TITLE_FPM_EXPLORER}" iconSrc="sap-icon://explorer" />
|
|
304
|
-
</f:header>
|
|
305
|
-
<f:content>
|
|
306
|
-
<VBox class="sapUiDemoKitResourcesCardContentSpacing" wrap="Wrap">
|
|
307
|
-
<Text text="{i18n>RESOURCES_CARD_DESC_FPM_EXPLORER}">
|
|
308
|
-
<layoutData>
|
|
309
|
-
<FlexItemData growFactor="1" />
|
|
310
|
-
</layoutData>
|
|
311
|
-
</Text>
|
|
312
|
-
<Link
|
|
313
|
-
class="sapUiDemoKitResourcesCardLink"
|
|
314
|
-
href="{resources>/fpmExplorer/href}"
|
|
315
|
-
target="_blank"
|
|
316
|
-
text="{i18n>RESOURCES_CARD_LINK_FPM_EXPLORER}"
|
|
317
|
-
tooltip="{i18n>RESOURCES_CARD_LINK_TOOLTIP}"
|
|
318
|
-
wrapping="true" />
|
|
319
|
-
</VBox>
|
|
320
|
-
</f:content>
|
|
321
|
-
</f:Card>
|
|
322
|
-
|
|
323
323
|
<!-- SAP Business Application Studio -->
|
|
324
324
|
<f:Card class="sapUiDemoKitResourcesRegularCard">
|
|
325
325
|
<f:header>
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
<core:FragmentDefinition
|
|
2
|
+
xmlns="sap.m"
|
|
3
|
+
xmlns:core="sap.ui.core"
|
|
4
|
+
xmlns:custom="sap.ui.documentation"
|
|
5
|
+
xmlns:l="sap.ui.layout">
|
|
6
|
+
<Panel visible="{=!${device>/system/phone} && ${versionData>/isOpenUI5}}"
|
|
7
|
+
accessibleRole="Region"
|
|
8
|
+
backgroundDesign="Transparent"
|
|
9
|
+
class="sapUiNoContentPadding">
|
|
10
|
+
<headerToolbar>
|
|
11
|
+
<Toolbar class="headlineCell">
|
|
12
|
+
<Title width="100%"
|
|
13
|
+
text="{i18n>WELCOME_START_CODING}"
|
|
14
|
+
level="H1"
|
|
15
|
+
titleStyle="H1"
|
|
16
|
+
class="sapUiMediumMarginTopBottom" />
|
|
17
|
+
</Toolbar>
|
|
18
|
+
</headerToolbar>
|
|
19
|
+
<l:BlockLayout>
|
|
20
|
+
<l:BlockLayoutRow>
|
|
21
|
+
<l:BlockLayoutCell backgroundColorSet="ColorSet10" backgroundColorShade="ShadeA">
|
|
22
|
+
<l:layoutData>
|
|
23
|
+
<l:BlockLayoutCellData sSize="1" mSize="2" lSize="3" xlSize="3" />
|
|
24
|
+
</l:layoutData>
|
|
25
|
+
|
|
26
|
+
<HBox alignItems="Center" justifyContent="Center" width="100%" height="100%">
|
|
27
|
+
|
|
28
|
+
<Image
|
|
29
|
+
src="./resources/sap/ui/documentation/sdk/images/Home_laptop.png"
|
|
30
|
+
densityAware="false"
|
|
31
|
+
width="100%"
|
|
32
|
+
alt="{i18n>WELCOME_BLOCK_7_ALT}">
|
|
33
|
+
<layoutData>
|
|
34
|
+
<FlexItemData maxWidth="37.5rem" />
|
|
35
|
+
</layoutData>
|
|
36
|
+
</Image>
|
|
37
|
+
</HBox>
|
|
38
|
+
</l:BlockLayoutCell>
|
|
39
|
+
|
|
40
|
+
<l:BlockLayoutCell
|
|
41
|
+
class="welcomeBlock"
|
|
42
|
+
backgroundColorSet="ColorSet10"
|
|
43
|
+
backgroundColorShade="ShadeA">
|
|
44
|
+
|
|
45
|
+
<l:layoutData>
|
|
46
|
+
<l:BlockLayoutCellData sSize="1" mSize="2" lSize="3" xlSize="3" />
|
|
47
|
+
</l:layoutData>
|
|
48
|
+
|
|
49
|
+
<HBox direction="Column" justifyContent="Center" width="100%" height="100%">
|
|
50
|
+
<custom:TitleLink
|
|
51
|
+
href="topic/8b49fc198bf04b2d9800fc37fecbb218"
|
|
52
|
+
text="{i18n>WELCOME_BLOCK_6_TITLE}"
|
|
53
|
+
titleStyle="H2" />
|
|
54
|
+
<Text class="sapUiMediumMarginTop" text="{i18n>WELCOME_BLOCK_6_TEXT_1}" />
|
|
55
|
+
<HBox width="100%">
|
|
56
|
+
<Text class="sapUiSmallMarginTop" text="{i18n>WELCOME_BLOCK_6_TEXT_2}" />
|
|
57
|
+
<Link class="liveEditorLink sapUiSmallMarginTop" text="{i18n>LIVE_EDITOR_TITLE}"
|
|
58
|
+
href="liveEditor" />
|
|
59
|
+
</HBox>
|
|
60
|
+
</HBox>
|
|
61
|
+
</l:BlockLayoutCell>
|
|
62
|
+
</l:BlockLayoutRow>
|
|
63
|
+
</l:BlockLayout>
|
|
64
|
+
</Panel>
|
|
65
|
+
</core:FragmentDefinition>
|