@openui5/sap.ui.documentation 1.127.0 → 1.128.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.documentation",
3
- "version": "1.127.0",
3
+ "version": "1.128.0",
4
4
  "description": "OpenUI5 UI Library sap.ui.documentation",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -14,11 +14,11 @@
14
14
  "url": "https://github.com/SAP/openui5.git"
15
15
  },
16
16
  "dependencies": {
17
- "@openui5/sap.m": "1.127.0",
18
- "@openui5/sap.ui.core": "1.127.0",
19
- "@openui5/sap.ui.layout": "1.127.0",
20
- "@openui5/themelib_sap_belize": "1.127.0",
21
- "@openui5/themelib_sap_fiori_3": "1.127.0",
22
- "@openui5/themelib_sap_horizon": "1.127.0"
17
+ "@openui5/sap.m": "1.128.0",
18
+ "@openui5/sap.ui.core": "1.128.0",
19
+ "@openui5/sap.ui.layout": "1.128.0",
20
+ "@openui5/themelib_sap_belize": "1.128.0",
21
+ "@openui5/themelib_sap_fiori_3": "1.128.0",
22
+ "@openui5/themelib_sap_horizon": "1.128.0"
23
23
  }
24
24
  }
@@ -6,7 +6,7 @@
6
6
  <copyright>OpenUI5
7
7
  * (c) Copyright 2009-2024 SAP SE or an SAP affiliate company.
8
8
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
9
- <version>1.127.0</version>
9
+ <version>1.128.0</version>
10
10
 
11
11
  <documentation>SAPUI5 library for the Demokit 2.0.</documentation>
12
12
 
@@ -25,14 +25,14 @@ sap.ui.define([
25
25
  * @namespace
26
26
  * @alias sap.ui.documentation
27
27
  * @author SAP SE
28
- * @version 1.127.0
28
+ * @version 1.128.0
29
29
  * @since 1.48
30
30
  * @public
31
31
  */
32
32
  var thisLibrary = Lib.init({
33
33
  apiVersion: 2,
34
34
  name : 'sap.ui.documentation',
35
- version: '1.127.0',
35
+ version: '1.128.0',
36
36
  dependencies : ['sap.ui.core','sap.m'],
37
37
  types: [],
38
38
  interfaces: [],
@@ -688,12 +688,22 @@ sap.ui.define([
688
688
 
689
689
  onSearchPickerItemPress: function (oEvent) {
690
690
  var contextPath = oEvent.oSource.getBindingContextPath(),
691
- oDataItem = this.getModel("searchData").getProperty(contextPath);
691
+ oDataItem = this.getModel("searchData").getProperty(contextPath),
692
+ oSearchDataModel = this.getOwnerComponent().getModel("searchData"),
693
+ sQuery = oSearchDataModel.getProperty("/query"),
694
+ isDocumentationItem = oDataItem.category === "Documentation",
695
+ baseURL = oDataItem.external ? new URL(oDataItem.path, document.baseURI).href : oDataItem.path;
696
+
697
+ if (sQuery && isDocumentationItem) {
698
+ baseURL += `?q=${encodeURIComponent(sQuery)}`;
699
+ }
700
+
692
701
  if (oDataItem.external) {
693
- openWindow(new URL(oDataItem.path, document.baseURI).href);
702
+ openWindow(baseURL);
694
703
  } else {
695
- this.getRouter().parsePath(oDataItem.path);
704
+ this.getRouter().parsePath(baseURL);
696
705
  }
706
+
697
707
  this.oPicker.close();
698
708
  },
699
709
 
@@ -118,6 +118,13 @@ sap.ui.define([
118
118
  return aSection.length && aSection[0];
119
119
  },
120
120
 
121
+ isDocumentationItem: function(oItem) {
122
+ var contextPath = oItem.getBindingContextPath(),
123
+ oDataItem = this.getModel("searchData").getProperty(contextPath);
124
+
125
+ return oDataItem.category === "Documentation";
126
+ },
127
+
121
128
  /**
122
129
  * Modify all search result links
123
130
  * The default modification is formatting of titles (hide/show trailing colons)
@@ -139,7 +146,9 @@ sap.ui.define([
139
146
  sHref,
140
147
  sTarget = "_self",
141
148
  bExternal,
142
- bFormatTitle = true;
149
+ bFormatTitle = true,
150
+ oSearchDataModel = this.getOwnerComponent().getModel("searchData"),
151
+ sQuery = oSearchDataModel.getProperty("/query");
143
152
 
144
153
  while (iLen--) {
145
154
  oItem = aItems[iLen];
@@ -150,10 +159,14 @@ sap.ui.define([
150
159
  if (bModifyHref) {
151
160
  sHref = oItem.getCustomData()[0].getValue();
152
161
  bExternal = oItem.getCustomData()[1].getValue();
162
+
153
163
  if (bExternal) {
154
164
  sHref = new URL(sHref, document.baseURI).href;
155
165
  sTarget = "_blank";
156
166
  }
167
+ if (sQuery && this.isDocumentationItem(oItem)) {
168
+ sHref = `${sHref}?q=${encodeURIComponent(sQuery)}`;
169
+ }
157
170
  oLink.setHref(sHref);
158
171
  oLink.setTarget(sTarget);
159
172
  }
@@ -23,7 +23,8 @@ sap.ui.define([
23
23
  "sap/m/MessageToast",
24
24
  "sap/ui/dom/includeStylesheet",
25
25
  "sap/ui/dom/includeScript",
26
- "sap/ui/util/openWindow"
26
+ "sap/ui/util/openWindow",
27
+ "sap/ui/documentation/sdk/controller/util/Highlighter"
27
28
  ],
28
29
  function (
29
30
  jQuery,
@@ -44,7 +45,8 @@ sap.ui.define([
44
45
  MessageToast,
45
46
  includeStylesheet,
46
47
  includeScript,
47
- openWindow
48
+ openWindow,
49
+ Highlighter
48
50
  ) {
49
51
  "use strict";
50
52
 
@@ -183,6 +185,10 @@ sap.ui.define([
183
185
 
184
186
  ResizeHandler.deregister(this._onResize.bind(this));
185
187
  Device.orientation.detachHandler(this._onOrientationChange, this);
188
+
189
+ if (this.highlighter) {
190
+ this.highlighter.destroy();
191
+ }
186
192
  },
187
193
 
188
194
  /* =========================================================== */
@@ -282,12 +288,16 @@ sap.ui.define([
282
288
  var sId = decodeURIComponent(event.getParameter("arguments").id),
283
289
  aUrlParts = sId.split("#"),
284
290
  sTopicId = aUrlParts[0],
285
- sSubTopicId = aUrlParts[1];
291
+ sSubTopicId = aUrlParts[1],
292
+ oOptions = event.getParameter("arguments")["?options"];
286
293
 
287
294
  this.sTopicId = sTopicId.replace(".html", "");
288
295
  this.sSubTopicId = sSubTopicId;
289
296
  this.sTopicURL = ResourcesUtil.getResourceOriginPath(this._oConfig.docuPath + sTopicId + (sTopicId.match(/\.html/) ? "" : ".html"));
290
297
  this.sSubTopicId = event.getParameter("arguments").subId || sSubTopicId;
298
+
299
+ this.sQueryFromUrl = oOptions && oOptions.q ? decodeURIComponent(oOptions.q) : "";
300
+
291
301
  jQuery.ajax(this.sTopicURL)
292
302
  .done(this._onHtmlResourceLoaded.bind(this))
293
303
  .fail(this.onRouteNotFound.bind(this));
@@ -349,6 +359,31 @@ sap.ui.define([
349
359
  window.hljs.highlightElement(block);
350
360
  });
351
361
  }
362
+
363
+ var oSearchDataModel = this.getOwnerComponent().getModel("searchData");
364
+ var sQuery = oSearchDataModel.getProperty("/topicQuery");
365
+
366
+ if (sQuery) {
367
+ this._updateHighlighting(sQuery);
368
+ }
369
+
370
+ if (this.sQueryFromUrl) {
371
+ this._updateHighlighting(this.sQueryFromUrl);
372
+ }
373
+ },
374
+
375
+ _updateHighlighting: function (sQuery) {
376
+ var oDomRef = this.getView().getDomRef();
377
+ if (this.highlighter) {
378
+ this.highlighter.highlight(sQuery);
379
+ } else if (sQuery) {
380
+ this.highlighter = new Highlighter(oDomRef, {
381
+ useExternalStyles: false,
382
+ shouldBeObserved: true,
383
+ isCaseSensitive: false
384
+ });
385
+ this.highlighter.highlight(sQuery);
386
+ }
352
387
  },
353
388
 
354
389
  _enableImageMap: function (imageMap, bIsSideBySide) {
@@ -48,6 +48,20 @@ sap.ui.define([
48
48
  .catch(function () {
49
49
  this.onRouteNotFound();
50
50
  }.bind(this));
51
+
52
+ this._oSearchField = this.byId("searchField");
53
+ this._oSearchField.attachLiveChange(this.onSearchFieldLiveChange, this);
54
+ },
55
+
56
+ onSearchFieldLiveChange: function(oEvent) {
57
+ var sQuery = oEvent.getParameter("newValue");
58
+ var oSearchDataModel = this.getOwnerComponent().getModel("searchData");
59
+
60
+ this._sFilter = sQuery;
61
+
62
+ oSearchDataModel.setProperty("/topicQuery", sQuery);
63
+
64
+ this.onTreeFilter({ getParameter: function() { return sQuery; } });
51
65
  },
52
66
 
53
67
  _onTopicMatched: function (event) {
@@ -2,7 +2,7 @@
2
2
  COOKIE_SETTINGS_DIALOG_TITLE=[[[\u0176\u014F\u0171\u0157 \u0108\u014F\u014F\u0137\u012F\u0113 \u015C\u0113\u0163\u0163\u012F\u014B\u011F\u015F\u2219\u2219\u2219\u2219]]]
3
3
  COOKIE_SETTINGS_DIALOG_REQUIRED_COOKIES_TITLE=[[[\u0158\u0113\u01A3\u0171\u012F\u0157\u0113\u018C \u0108\u014F\u014F\u0137\u012F\u0113\u015F\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
4
4
  COOKIE_SETTINGS_DIALOG_REQUIRED_COOKIES_SUMMARY=[[[\u0162\u0125\u0113\u015F\u0113 \u010B\u014F\u014F\u0137\u012F\u0113\u015F \u0105\u0157\u0113 \u0157\u0113\u01A3\u0171\u012F\u0157\u0113\u018C \u0163\u014F \u0113\u014B\u0105\u0183\u013A\u0113 \u010B\u014F\u0157\u0113 \u015F\u012F\u0163\u0113 \u0192\u0171\u014B\u010B\u0163\u012F\u014F\u014B\u0105\u013A\u012F\u0163\u0177.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
5
- COOKIE_SETTINGS_DIALOG_REQUIRED_COOKIES_TEXT=[[[\u0174\u0113 \u0171\u015F\u0113 \u010B\u014F\u014F\u0137\u012F\u0113\u015F \u0163\u014F \u012F\u0271\u03C1\u0157\u014F\u028B\u0113 \u0177\u014F\u0171\u0157 \u0113\u03C7\u03C1\u0113\u0157\u012F\u0113\u014B\u010B\u0113 \u014F\u014B \u014F\u0171\u0157 \u015F\u012F\u0163\u0113. \u0181\u0177 \u010B\u014F\u014B\u0163\u012F\u014B\u0171\u012F\u014B\u011F \u0163\u014F \u0171\u015F\u0113 \u0163\u0125\u012F\u015F \u015F\u012F\u0163\u0113, \u0177\u014F\u0171 \u010B\u014F\u014B\u015F\u0113\u014B\u0163 \u0163\u014F \u0171\u015F\u0113 \u014F\u0171\u0157 \u010B\u014F\u014F\u0137\u012F\u0113\u015F.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
5
+ COOKIE_SETTINGS_DIALOG_REQUIRED_COOKIES_TEXT=[[[\u0174\u0113 \u0171\u015F\u0113 \u010B\u014F\u014F\u0137\u012F\u0113\u015F \u0163\u014F \u012F\u0271\u03C1\u0157\u014F\u028B\u0113 \u0177\u014F\u0171\u0157 \u0113\u03C7\u03C1\u0113\u0157\u012F\u0113\u014B\u010B\u0113 \u014F\u014B \u014F\u0171\u0157 \u015F\u012F\u0163\u0113. \u0181\u0177 \u010B\u014F\u014B\u0163\u012F\u014B\u0171\u012F\u014B\u011F \u0163\u014F \u0171\u015F\u0113 \u0163\u0125\u012F\u015F \u015F\u012F\u0163\u0113, \u0177\u014F\u0171 \u010B\u014F\u014B\u015F\u0113\u014B\u0163 \u0163\u014F \u0171\u015F\u0113 \u014F\u0171\u0157 \u010B\u014F\u014F\u0137\u012F\u0113\u015F.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
6
6
  COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_MORE_INFO=[[[\u039C\u014F\u0157\u0113 \u012C\u014B\u0192\u014F\u2219\u2219\u2219\u2219\u2219]]]
7
7
  COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_ACCEPT_ALL=[[[\u0100\u010B\u010B\u0113\u03C1\u0163 \u0100\u013A\u013A\u2219\u2219\u2219\u2219]]]
8
8
  COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_REJECT_ALL=[[[\u0158\u0113\u0135\u0113\u010B\u0163 \u0100\u013A\u013A\u2219\u2219\u2219\u2219]]]
@@ -1,11 +1,11 @@
1
1
 
2
- COOKIE_SETTINGS_DIALOG_TITLE=x1W1h0v9lGVR8awRc064qQ_Your Cookie Settings
3
- COOKIE_SETTINGS_DIALOG_REQUIRED_COOKIES_TITLE=TbiVpH03OTE/9wV0ybeSug_Required Cookies
4
- COOKIE_SETTINGS_DIALOG_REQUIRED_COOKIES_SUMMARY=Ca2KgCCeSFefYo6By5/9WA_These cookies are required to enable core site functionality.
5
- COOKIE_SETTINGS_DIALOG_REQUIRED_COOKIES_TEXT=OnVoXSggdNLUUWDxCqsUhQ_We use cookies to improve your experience on our site. By continuing to use this site, you consent to use our cookies.
6
- COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_MORE_INFO=cedvxirFKSzp12gOkxxo2A_More Info
7
- COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_ACCEPT_ALL=S8bEWnU8ELhO/e5pWDOucQ_Accept All
8
- COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_REJECT_ALL=zrSvKZbhm5T04xcSlX12uA_Reject All
9
- COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_SET_PREFERENCES=tEf1ZYc5XpMT4rgyT5yr1Q_Set Preferences
10
- COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_SAVE_PREFERENCES=tS8eCwwTWZDBuQptUCUYUA_Save Preferences
11
- COOKIE_SETTINGS_DIALOG_CANCEL_BTN=BzsJKUxUdWKJLlPClObTMQ_Cancel
2
+ COOKIE_SETTINGS_DIALOG_TITLE=zNlO/W+mEg4lHeS9BQgoVg_Your Cookie Settings
3
+ COOKIE_SETTINGS_DIALOG_REQUIRED_COOKIES_TITLE=DdHy2pFtSKqF+WVRqKW3Gg_Required Cookies
4
+ COOKIE_SETTINGS_DIALOG_REQUIRED_COOKIES_SUMMARY=6c0eo+Ng/GaMMy9pJDc+xw_These cookies are required to enable core site functionality.
5
+ COOKIE_SETTINGS_DIALOG_REQUIRED_COOKIES_TEXT=ntopAjQxhPd+ehOz58bKbg_We use cookies to improve your experience on our site. By continuing to use this site, you consent to use our cookies.
6
+ COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_MORE_INFO=idyM/NF7DfFtb43bBqyFjA_More Info
7
+ COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_ACCEPT_ALL=4t5LHYKRDcI/C0v7mdZsCA_Accept All
8
+ COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_REJECT_ALL=9rQfcGn3SCyVWz0tZ4mIJA_Reject All
9
+ COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_SET_PREFERENCES=yjWguM8zFtiFrRfTtTbvGg_Set Preferences
10
+ COOKIE_SETTINGS_DIALOG_FUNCTIONAL_COOKIES_SAVE_PREFERENCES=+UpSwAXa9IwJmx9r3v9ChA_Save Preferences
11
+ COOKIE_SETTINGS_DIALOG_CANCEL_BTN=sBsuQ+LlKYzbsU80JN2Kyg_Cancel
@@ -314,12 +314,12 @@ html.sap-desktop .sapContrast.sapMSlt.sapUiDocumentationSelect:not(.sapMSltExpan
314
314
 
315
315
  .sapUiTheme-sap_horizon .sapFDynamicPageHeader.sapFDynamicPageHeaderWithContent .sapMText,
316
316
  .sapUiTheme-sap_horizon .sapFDynamicPageHeaderWithContent .sapUiDocumentationTopicSubtitle {
317
- color: #556b82;
317
+ color: var(--sapObjectHeader_Subtitle_TextColor);
318
318
  }
319
319
 
320
320
  .sapUiTheme-sap_horizon_dark .sapFDynamicPageHeader.sapFDynamicPageHeaderWithContent .sapMText,
321
321
  .sapUiTheme-sap_horizon_dark .sapFDynamicPageHeaderWithContent .sapUiDocumentationTopicSubtitle {
322
- color: #8396a8;
322
+ color: var(--sapObjectHeader_Subtitle_TextColor);
323
323
  }
324
324
 
325
325
  .sapUiDocumentation2ColumnsEqualTable {
@@ -364,11 +364,11 @@ html[dir="rtl"] #CompactModeButtons, html[dir="rtl"] #RTLButtons {
364
364
 
365
365
  .sapMIBar .sapMBtn.sapUiExploredWarningIcon .sapMBtnInner.sapMBtnDefault .sapUiIcon,
366
366
  .sapMIBar .sapUiExploredWarningIcon.sapMBtn:hover:not(.sapMBtnDisabled):not(.sapMSBActive) > .sapMBtnHoverable:not(.sapMBtnDisabled):not(.sapMBtnActive):not(.sapMToggleBtnPressed):not(.sapMBtnTransparent).sapMBtnDefault .sapUiIcon {
367
- color: #e76500;
367
+ color: var(--sapCriticalColor);
368
368
  }
369
369
 
370
370
  html.sap-desktop .sapUiExploredWarningIcon.sapMBtn:focus > .sapMFocusable:not(.sapMBadgeIndicator):before {
371
- border-color: #e76500;
371
+ border-color: var(--sapCriticalColor);
372
372
  }
373
373
  .sapUiExploredWarning {
374
374
  padding : 1rem;
@@ -947,15 +947,6 @@ html:not(.sapUiTheme-sap_belize_hcb):not(.sapUiTheme-sap_belize_hcw):not(.sapUiT
947
947
  color: #fff;
948
948
  }
949
949
 
950
- html:not(.sapUiTheme-sap_belize_hcb):not(.sapUiTheme-sap_belize_hcw):not(.sapUiTheme-sap_fiori_3_hcb):not(.sapUiTheme-sap_fiori_3_hcw) .demokitInitialPagesWhiteText .sapMLnk:hover:not(.sapMLnkDsbl) {
951
- color: #7ed0ff;
952
- }
953
-
954
- html:not(.sapUiTheme-sap_belize_hcb):not(.sapUiTheme-sap_belize_hcw):not(.sapUiTheme-sap_fiori_3_hcb):not(.sapUiTheme-sap_fiori_3_hcw) .demokitInitialPagesBrightLink.sapMLnk,
955
- html:not(.sapUiTheme-sap_belize_hcb):not(.sapUiTheme-sap_belize_hcw):not(.sapUiTheme-sap_fiori_3_hcb):not(.sapUiTheme-sap_fiori_3_hcw) .demokitInitialPagesBrightLink.sapMLnk:hover {
956
- color: #d1e8ff;
957
- }
958
-
959
950
  .demokitInitialPagesBrightLinkSmallerText {
960
951
  font-size: 0.8rem;
961
952
  }
@@ -997,7 +988,7 @@ html.sapUiTheme-sap_belize_hcw .sapUiJSD a {
997
988
 
998
989
  html:not(.sapUiTheme-sap_belize_hcb):not(.sapUiTheme-sap_belize_hcw):not(.sapUiTheme-sap_fiori_3_hcb):not(.sapUiTheme-sap_fiori_3_hcw)
999
990
  .sapUiJSD a {
1000
- color: #0070b1;
991
+ color: var(--sapLinkColor);
1001
992
  }
1002
993
 
1003
994
  html:not(.sapUiTheme-sap_belize_hcb):not(.sapUiTheme-sap_belize_hcw):not(.sapUiTheme-sap_fiori_3_hcb):not(.sapUiTheme-sap_fiori_3_hcw):not(.sapUiTheme-sap_horizon):not(.sapUiTheme-sap_horizon_dark)
@@ -1684,7 +1675,7 @@ html:not(.sapUiMedia-Std-Phone) .sapUiParamText.depth-5 {
1684
1675
  box-sizing: border-box;
1685
1676
  border: none;
1686
1677
  background: #FFFFFF;
1687
- color: #346187;
1678
+ color: var(--sapButton_IconColor);
1688
1679
  }
1689
1680
 
1690
1681
 
@@ -280,7 +280,7 @@
280
280
  ]
281
281
  },
282
282
  {
283
- "pattern": "topic/{id}",
283
+ "pattern": "topic/{id}:?options:",
284
284
  "name": "topicId",
285
285
  "target": [
286
286
  "topicMaster",
@@ -998,10 +998,10 @@ var hljs = (function () {
998
998
  * @param {string} message
999
999
  */
1000
1000
  const deprecated = (version, message) => {
1001
- if (seenDeprecations[`1.127.0/${message}`]) return;
1001
+ if (seenDeprecations[`1.128.0/${message}`]) return;
1002
1002
 
1003
- console.log(`Deprecated as of 1.127.0. ${message}`);
1004
- seenDeprecations[`1.127.0/${message}`] = true;
1003
+ console.log(`Deprecated as of 1.128.0. ${message}`);
1004
+ seenDeprecations[`1.128.0/${message}`] = true;
1005
1005
  };
1006
1006
 
1007
1007
  /* eslint-disable no-throw-literal */
@@ -8,6 +8,6 @@
8
8
  "build": "ui5 build"
9
9
  },
10
10
  "devDependencies": {
11
- "@ui5/cli": "^3"
11
+ "@ui5/cli": "^4"
12
12
  }
13
13
  }
@@ -1,4 +1,4 @@
1
- specVersion: "3.0"
1
+ specVersion: "4.0"
2
2
  metadata:
3
3
  name: {{SAMPLE_ID}}
4
4
  type: application
@@ -14,11 +14,11 @@
14
14
 
15
15
  .sapDemokitTreeItemLabel {
16
16
  font-size: 0.75rem;
17
- color: #d3d7d9;
17
+ color: @sapNeutralColor;
18
18
  }
19
19
 
20
20
  .sapUiTheme-sap_horizon .sapDemokitTreeItemLabel {
21
- color: #556b82;
21
+ color: @sapContent_LabelColor;
22
22
  }
23
23
 
24
24
  .sapUiTheme-sap_belize_hcw .sapDemokitTreeItemLabel {
@@ -562,7 +562,7 @@ html.sap-tablet:not(.sap-desktop) {
562
562
  box-sizing: border-box;
563
563
 
564
564
  .emphasis {
565
- background-color: #fffcb5;
565
+ background-color: @sapWarningBackground;
566
566
  }
567
567
  }
568
568
 
@@ -175,13 +175,13 @@
175
175
  .sapUiTheme-sap_horizon_dark,
176
176
  .sapUiTheme-sap_fiori_3_dark {
177
177
  .sapUiDocLightTable .head {
178
- background-color: #232931;
179
- border-bottom: solid 1px #3a4552;
178
+ background-color: @sapList_HeaderBackground;
179
+ border-bottom: solid 1px @sapPageHeader_BorderColor;
180
180
  }
181
181
 
182
182
  .sapUiDocLightTable .row {
183
- background-color: #29313a;
184
- border-bottom: solid 1px #3a4552;
183
+ background-color: @sapBaseColor;
184
+ border-bottom: solid 1px @sapPageHeader_BorderColor;
185
185
  }
186
186
 
187
187
  .sapUiDocLightTable .head,
@@ -175,13 +175,13 @@
175
175
  .sapUiTheme-sap_horizon_dark,
176
176
  .sapUiTheme-sap_fiori_3_dark {
177
177
  .sapUiDocLightTable .head {
178
- background-color: #232931;
179
- border-bottom: solid 1px #3a4552;
178
+ background-color: @sapList_HeaderBackground;
179
+ border-bottom: solid 1px @sapPageHeader_BorderColor;
180
180
  }
181
181
 
182
182
  .sapUiDocLightTable .row {
183
- background-color: #29313a;
184
- border-bottom: solid 1px #3a4552;
183
+ background-color: @sapBaseColor;
184
+ border-bottom: solid 1px @sapPageHeader_BorderColor;
185
185
  }
186
186
 
187
187
  .sapUiDocLightTable .head,
@@ -1,5 +1,5 @@
1
1
  @tag-color: #00abff;
2
- @background-color: #1d2d3e;
2
+ @background-color: @sapPrimary1;
3
3
  @code-highlight-color: #24435e;
4
4
 
5
5
  #d4h5-main-container,